home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%SystemRoot%"=="" cd %winbootdir%\Java\VJTrial
- if "%winbootdir%"=="" cd %SystemRoot%\Java\VJTrial
- echo Glueing VJTRIAL.EXE back together again...
- if not exist vjtrial1.dat goto error
- if not exist vjtrial2.dat goto error
- if not exist vjtrial3.dat goto error
- copy /B vjtrial1.dat+vjtrial2.dat+vjtrial3.dat vjtrial.exe
- echo:
- echo Finished!
- echo:
- if exist vjtrial.exe goto install
- echo To install the Visual J++ trial version, run VJTRIAL.EXE
- goto end
-
- :install
- echo Cleaning up the old files to save disk space...
- del vjtrial*.dat
- REM Run the VJ trial installation EXE
- vjtrial
- goto end
-
- :error
- echo:
- echo I am not finding all 3 VJTRIAL data files.
- echo Make sure you have VJTRIAL1.DAT, VJTRIAL2.DAT and VJTRIAL3.DAT
- echo in this directory first and the run VJGLUE.BAT
- echo:
-
- :end
-